home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / forms / jr3dct / form2.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-02-15  |  1.0 KB  |  39 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    BorderStyle     =   0  'None
  4.    ClientHeight    =   3720
  5.    ClientLeft      =   1245
  6.    ClientTop       =   1950
  7.    ClientWidth     =   7485
  8.    Height          =   4185
  9.    Left            =   1155
  10.    LinkTopic       =   "Form2"
  11.    ScaleHeight     =   3720
  12.    ScaleWidth      =   7485
  13.    Top             =   1575
  14.    Width           =   7665
  15.    Begin CommandButton Command1 
  16.       Caption         =   "Unload"
  17.       Height          =   420
  18.       Left            =   5760
  19.       TabIndex        =   0
  20.       Top             =   3105
  21.       Width           =   1455
  22.    End
  23.    Begin Label Label1 
  24.       Caption         =   "There is no border around this Form"
  25.       Height          =   285
  26.       Left            =   1680
  27.       TabIndex        =   1
  28.       Top             =   675
  29.       Width           =   4215
  30.    End
  31. Option Explicit
  32. Sub Command1_Click ()
  33.     Form1.WindowState = 0
  34.     Unload Form2
  35. End Sub
  36. Sub Form_Paint ()
  37.     r = JR3DLook(hWnd, Raised)
  38. End Sub
  39.